blob: 7ad36928e34ea3d4ff3ca9b7ef2cdafd30829da9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import Layout from '@components/Layouts/Layout';
import { fetchAllPostsSlug } from '@services/graphql/blog';
import { getPostBySlug } from '@services/graphql/post';
import { NextPageWithLayout } from '@ts/types/app';
import { ArticleProps } from '@ts/types/articles';
import { loadTranslation } from '@utils/helpers/i18n';
import { GetStaticPaths, GetStaticProps, GetStaticPropsContext } from 'next';
import { ParsedUrlQuery } from 'querystring';
import { ReactElement } from 'react';
const SingleArticle: NextPageWithLayout<ArticleProps> = ({ post }) => {
return (
<article>
<header>
<h1>{post.title}</h1>
<div dangerouslySetInnerHTML={{ __html: post.intro }}></div>
</header>
<div dangerouslySetInnerHTML={{ __html: post.content }}></div>
</article>
);
};
SingleArticle.getLayout = function getLayout(page: ReactElement) {
return <Layout>{page}</Layout>;
};
interface PostParams extends ParsedUrlQuery {
slug: string;
}
export const getStaticProps: GetStaticProps = async (
context: GetStaticPropsContext
) => {
const translation = await loadTranslation(
context.locale!,
process.env.NODE_ENV === 'production'
);
const { slug } = context.params as PostParams;
const post = await getPostBySlug(slug);
return {
props: {
post,
translation,
},
};
};
export const getStaticPaths: GetStaticPaths = async () => {
const allSlugs = await fetchAllPostsSlug();
return {
paths: allSlugs.map((post) => `/article/${post.slug}`),
fallback: true,
};
};
export default SingleArticle;
|